Accuracy Rate and Error Rate:
AR = Correct/Total = (TN + TP)/Total = 84/100 = 84%
ER = Incorrect/Total = (FN + FP)/Total = 16/100 = 16%
where,
AR = Accuracy Rate
TN = True Negative
TP = True Positive
ER = Error Rate
FN = False Negative
FP = False Positive
Link: https://towardsdatascience.com/understanding-the-confusion-matrix-from-scikit-learn-c51d88929c79
Classification Model Name | Accuracy Scores |
---|---|
Logistic Regression | 94.73 |
K-Nearest Neighbors | 94.73 |
Support Vector Machine | 94.15 |
Kernel SVM | 95.32 |
Naive Bayes | 94.15 |
Decision Tree Classification | 95.90 |
Random Forest Classification | 93.56 |
Note:- Here the highest accuracy score is of Decision Tree Classification
«Previous | Next» |